:root {
  --primary: #1a56db;
  --primary-dark: #1e429f;
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --success: #10b981;
  --danger: #ef4444;
  --info: #06b6d4;
  --purple: #8b5cf6;
  --pink: #ec4899;
  --dark: #1f2937;
  --gray: #6b7280;
  --gray-light: #9ca3af;
  --bg: #f8fafc;
  --bg-card: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --radius: 16px;
  --radius-sm: 10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Bar */
.top-bar {
  background: linear-gradient(90deg, #1e3a5f, #2563eb);
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
}

.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar b {
  color: var(--accent-light);
  font-size: 15px;
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #1e3a5f, #2563eb);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 10px 0;
  overflow: hidden;
}

.announcement-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.announcement-inner > i {
  color: var(--accent-light);
  font-size: 14px;
  flex-shrink: 0;
}

.announcement-scroll {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.announcement-scroll span {
  display: inline-block;
  padding: 0 30px;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  position: relative;
}

.announcement-scroll span::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--accent-light);
  border-radius: 50%;
}

.announcement-scroll span:last-child::after {
  display: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

/* Search Box */
.header-search-box {
  position: relative;
  flex: 0 0 auto;
  width: 280px;
}

.search-box-inner {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px 8px;
  transition: all 0.3s;
}

.search-box-inner:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}

.search-tag {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 0 8px;
  white-space: nowrap;
  cursor: pointer;
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--dark);
  font-size: 14px;
  padding: 3px 6px;
  min-width: 0;
}

.search-input::placeholder {
  color: var(--gray-light);
}

.search-hot {
  color: #ff6b6b;
  font-size: 12px;
  font-weight: 600;
  padding: 0 6px;
  white-space: nowrap;
  cursor: pointer;
}

.search-submit {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.search-submit:hover {
  transform: scale(1.1);
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 1001;
  box-shadow: var(--shadow-lg);
}

.search-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

.dropdown-list {
  list-style: none;
}

.dropdown-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  cursor: pointer;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.dropdown-list li:last-child {
  border-bottom: none;
}

.dropdown-list li:hover {
  color: var(--primary);
}

.rank-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--bg);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--dark);
}

.rank-num.rank-top-1 { background: linear-gradient(135deg, #FFD700, #FFA500); color: #fff; }
.rank-num.rank-top-2 { background: linear-gradient(135deg, #C0C0C0, #A0A0A0); color: #fff; }
.rank-num.rank-top-3 { background: linear-gradient(135deg, #CD7F32, #B87333); color: #fff; }

.keyword {
  font-size: 13px;
  color: var(--dark);
}

.mobile-search-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 20px;
  cursor: pointer;
  padding: 6px;
}

.countdown-label {
  text-align: center;
  color: var(--accent);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  height: 44px;
  width: 44px;
  border-radius: 12px;
  object-fit: cover;
}

.logo-text strong {
  display: block;
  font-size: 18px;
  color: var(--dark);
  line-height: 1.2;
}

.logo-text small {
  display: block;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 1px;
}

.main-nav {
  display: flex;
  gap: 4px;
}

.main-nav a {
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 20px;
  transition: all 0.3s;
  font-weight: 500;
}

.main-nav a:hover,
.main-nav a.active {
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: #fff;
  box-shadow: 0 4px 12px rgba(26,86,219,0.25);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 26px;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 120px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #2563eb 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/datu.jpg") center/cover no-repeat;
  opacity: 0.12;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.hero-particles::before {
  top: 10%;
  left: 10%;
}

.hero-particles::after {
  bottom: 10%;
  right: 10%;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--accent-light);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 30px;
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 2px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.cd-item {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 20px 24px;
  min-width: 90px;
  backdrop-filter: blur(10px);
}

.cd-item span {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.cd-item em {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  font-style: normal;
}

.cd-sep {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-light);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(245,158,11,0.35);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(245,158,11,0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

.hero-hosts {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.host-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.host-item img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.host-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* Live Now */
.live-now {
  background: var(--bg);
  padding: 60px 0;
}

.live-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.live-header h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-dot {
  width: 12px;
  height: 12px;
  background: var(--danger);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.view-all {
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s;
}

.view-all:hover {
  color: var(--primary-dark);
}

.live-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}

.live-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.live-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.live-card.featured {
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
  color: #fff;
  border: none;
}

.live-card.featured .live-team span,
.live-card.featured .live-score {
  color: #fff;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--danger);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.live-teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}

.live-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.live-team img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.live-team span {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

.live-score {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  min-width: 80px;
  text-align: center;
}

.live-info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray);
}

.live-card.featured .live-info {
  color: rgba(255,255,255,0.7);
}

.live-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--success), var(--accent));
  width: 78%;
  border-radius: 0 0 0 var(--radius);
}

/* Quick Nav */
.quick-nav {
  background: var(--bg-card);
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}

.quick-list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}

.q-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.3s;
}

.q-item:hover {
  transform: translateY(-4px);
}

.q-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s;
  box-shadow: var(--shadow);
}

.q-item:hover .q-icon {
  background: var(--bg);
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.q-icon span {
  filter: grayscale(0.2);
}

.q-label {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.section-header p {
  font-size: 16px;
  color: var(--gray);
}

/* Schedule */
.schedule-section {
  background: var(--bg);
  padding: 80px 0;
}

.schedule-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--gray);
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s;
  font-family: inherit;
}

.tab-btn.active,
.tab-btn:hover {
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(26,86,219,0.25);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Groups */
.groups-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.group-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.group-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.group-head {
  padding: 14px;
  text-align: center;
  background: var(--c, var(--primary));
}

.group-head h3 {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}

.group-body {
  padding: 16px;
}

.g-team {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.g-team:last-child {
  border-bottom: none;
}

.g-team img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.g-team span {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

/* Round Matches */
.round-block {
  margin-bottom: 32px;
}

.round-date {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 4px solid var(--primary);
}

.match-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.m-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  transition: all 0.3s;
}

.m-row:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.m-time {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  min-width: 50px;
}

.m-group {
  font-size: 13px;
  color: var(--gray);
  min-width: 36px;
  background: var(--bg);
  padding: 4px 10px;
  border-radius: 8px;
  text-align: center;
}

.m-teams {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.m-teams img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.m-teams span {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  min-width: 80px;
  text-align: center;
}

.m-teams b {
  color: var(--gray-light);
  font-size: 13px;
  background: var(--bg);
  padding: 4px 12px;
  border-radius: 10px;
  font-weight: 700;
}

.m-status {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  min-width: 64px;
  text-align: center;
}

.m-status:contains("已结束"),
.m-status {
  background: #dcfce7;
  color: var(--success);
}

/* Knockout Timeline */
.ko-timeline {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.ko-stage {
  flex: 1;
  min-width: 200px;
}

.ko-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 16px;
  padding: 10px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.ko-stage.final .ko-title {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  border: none;
}

.ko-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
}

.ko-item b {
  color: var(--primary);
}

.ko-arrow {
  font-size: 28px;
  color: var(--primary);
  font-weight: 700;
}

/* Players */
.players-section {
  background: var(--bg-card);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.player-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.player-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.player-top {
  height: 120px;
  background: var(--team, var(--primary));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
  position: relative;
}

.player-top img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  position: absolute;
  bottom: -50px;
  box-shadow: var(--shadow-lg);
}

.player-info {
  padding: 60px 20px 24px;
  text-align: center;
}

.player-info h3 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.player-info .flag {
  font-size: 20px;
}

.player-team {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 16px;
}

.player-nums {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
}

.player-nums div {
  text-align: center;
}

.player-nums b {
  display: block;
  font-size: 22px;
  color: var(--primary);
  line-height: 1;
}

.player-nums span {
  display: block;
  font-size: 11px;
  color: var(--gray);
  margin-top: 4px;
}

.player-bio {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}

/* News */
.news-section {
  background: var(--bg);
  padding: 80px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.news-card {
  display: flex;
  gap: 0;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.news-card.featured {
  grid-column: 1 / -1;
  position: relative;
  min-height: 320px;
}

.news-card.featured > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card.featured .news-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: #fff;
}

.news-card.featured h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 12px;
}

.news-card.featured p {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
}

.news-card.featured time {
  color: var(--accent-light);
}

.news-card > img {
  width: 220px;
  height: 180px;
  object-fit: cover;
  flex-shrink: 0;
}

.news-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: #dbeafe;
  padding: 4px 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  width: fit-content;
}

.news-card.featured .news-tag {
  background: var(--accent);
  color: #fff;
}

.news-body h3 {
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 700;
}

.news-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.news-body time,
.news-overlay time {
  font-size: 12px;
  color: var(--gray-light);
  margin-top: 12px;
  display: block;
}

/* Predictions */
.predictions-section {
  background: var(--bg-card);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.predictions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pred-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
  box-shadow: var(--shadow);
}

.pred-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.pred-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.pred-header img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.pred-header span {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  min-width: 70px;
  text-align: center;
}

.pred-header b {
  color: var(--gray-light);
  font-size: 13px;
  background: var(--bg);
  padding: 4px 14px;
  border-radius: 10px;
}

.pred-body {
  margin-bottom: 12px;
}

.pred-rate {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.rate-bar {
  flex: 1;
  height: 32px;
  background: var(--bg);
  border-radius: 16px;
  overflow: hidden;
}

.rate-fill {
  height: 100%;
  width: var(--p);
  background: linear-gradient(90deg, var(--success), #34d399);
  border-radius: 16px;
  transition: width 1s ease;
}

.pred-rate.away .rate-fill {
  background: linear-gradient(90deg, var(--danger), #f87171);
}

.pred-rate.draw .rate-fill {
  background: linear-gradient(90deg, var(--info), #67e8f9);
}

.rate-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  min-width: 44px;
  text-align: right;
}

.pred-footer {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 16px;
  padding: 0 4px;
}

.pred-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  padding: 14px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
}

/* Comments */
.comments-section {
  background: var(--bg);
  padding: 80px 0;
}

.comments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.comment-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.comment-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.comment-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.comment-head img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-head strong {
  display: block;
  font-size: 15px;
  color: var(--dark);
}

.comment-head span {
  font-size: 12px;
  color: var(--gray-light);
}

.comment-card > p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.comment-foot {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--gray-light);
}

.comment-foot span {
  cursor: pointer;
  transition: color 0.3s;
}

.comment-foot span:hover {
  color: var(--primary);
}

/* Teams */
.teams-section {
  background: var(--bg-card);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-rank {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: var(--c, var(--primary));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card > img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 12px;
}

.team-card h3 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 6px;
}

.team-title {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--c, var(--primary));
  background: rgba(0,0,0,0.04);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.team-card > p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}

/* Stats */
.stats-section {
  background: var(--bg);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-box {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.stat-box h3 {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-row {
  display: grid;
  grid-template-columns: 50px 1fr 1fr 60px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  transition: background 0.3s;
}

.stat-row:hover {
  background: var(--bg);
}

.stat-row.head {
  font-weight: 700;
  color: var(--dark);
  background: var(--bg);
}

.stat-row span {
  color: var(--gray);
}

.stat-row span:nth-child(4) {
  text-align: right;
  font-weight: 700;
  color: var(--primary);
}

.stat-row img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 6px;
}

/* Videos */
.videos-section {
  background: var(--bg-card);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.v-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

.v-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.video-card:hover .v-thumb img {
  transform: scale(1.05);
}

.v-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: var(--shadow-lg);
}

.video-card:hover .v-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--primary);
  color: #fff;
}

.v-time {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 500;
}

.v-info {
  padding: 18px;
}

.v-info h3 {
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.4;
  font-weight: 700;
}

.v-info p {
  font-size: 13px;
  color: var(--gray);
}

/* Community */
.community-section {
  background: var(--bg);
  padding: 80px 0;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.topic-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.topic-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.topic-card.hot {
  border-color: rgba(239,68,68,0.2);
  background: linear-gradient(135deg, #fff, #fef2f2);
}

.topic-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.topic-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  background: var(--bg);
  padding: 4px 12px;
  border-radius: 8px;
}

.topic-tag.hot {
  color: var(--danger);
  background: #fee2e2;
}

.topic-count {
  font-size: 12px;
  color: var(--gray-light);
}

.topic-card h3 {
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
  font-weight: 700;
}

.topic-card > p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.topic-foot {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--gray-light);
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 60px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
}

.footer-brand strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--gray-light);
}

.footer-links h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.footer-links a {
  display: block;
  color: var(--gray-light);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gray-light);
  margin-bottom: 10px;
  line-height: 1.7;
}

.footer-bottom a {
  color: var(--accent-light);
  text-decoration: none;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(26,86,219,0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 1024px) {
  .quick-list {
    grid-template-columns: repeat(4, 1fr);
  }
  .players-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .groups-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .comments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .live-grid {
    grid-template-columns: 1fr 1fr;
  }
  .live-card.featured {
    grid-column: 1 / -1;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    transform: translateY(-150%);
    transition: transform 0.3s;
    z-index: 999;
    max-height: 70vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border);
  }
  .main-nav.open {
    transform: translateY(0);
  }
  .main-nav a {
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--dark);
  }
  .menu-toggle {
    display: block;
  }
  .mobile-search-toggle {
    display: block;
  }
  .header-search-box {
    display: none;
  }
  .header-search-box.show {
    display: block;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 10px 16px;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }
  .countdown-label {
    font-size: 14px;
    padding: 0 16px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
  }
  .btn-primary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero p {
    font-size: 16px;
  }
  .hero-countdown {
    gap: 8px;
  }
  .cd-item {
    padding: 14px 18px;
    min-width: 70px;
  }
  .cd-item span {
    font-size: 28px;
  }
  .hero-hosts {
    gap: 24px;
  }
  .quick-list {
    grid-template-columns: repeat(4, 1fr);
  }
  .groups-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .players-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-card {
    flex-direction: column;
  }
  .news-card > img {
    width: 100%;
    height: 180px;
  }
  .news-body {
    padding: 16px;
  }
  .predictions-grid {
    grid-template-columns: 1fr;
  }
  .teams-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .videos-grid {
    grid-template-columns: 1fr;
  }
  .community-grid {
    grid-template-columns: 1fr;
  }
  .comments-grid {
    grid-template-columns: 1fr;
  }
  .live-grid {
    grid-template-columns: 1fr;
  }
  .ko-timeline {
    flex-direction: column;
  }
  .ko-arrow {
    transform: rotate(90deg);
  }
  .m-row {
    flex-wrap: wrap;
    gap: 8px;
  }
  .m-teams {
    width: 100%;
    justify-content: space-between;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 26px;
  }
  .cd-item {
    padding: 10px 12px;
    min-width: 60px;
  }
  .cd-item span {
    font-size: 22px;
  }
  .quick-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .q-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .q-label {
    font-size: 11px;
  }
  .groups-grid {
    grid-template-columns: 1fr;
  }
  .players-grid {
    grid-template-columns: 1fr;
  }
  .teams-grid {
    grid-template-columns: 1fr;
  }
  .section-header h2 {
    font-size: 24px;
  }
  .stat-row {
    grid-template-columns: 36px 1fr 1fr 48px;
    font-size: 12px;
    padding: 8px;
  }
  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
